RangeFilterCondition`1 Model

A filter condition is a way of specifying how to filter/restrict the result set for a given property

Nullable
Range : Range`1

Condition is satisfied if a value lies within this range (inclusive). Cannot be used with Value, ListCondition or AnyRange

Nullable
AnyRange : Range`1 []

Condition is satisfied if a value lies within ANY of the ranges specified (inclusive). Cannot be used with Value, ListCondition or Range

Nullable
ListCondition : object []

Nullable
Value : object

NegateCondition : bool

boolean inverts conditions used by this instance

Nullable
FilterID : number (int)

The unique (per query) ID for this filter. Will be set automatically by the server, no need to set it. Duplicating this value will
likely result in query failures

Example
{
  "Range": {},
  "AnyRange": [],
  "ListCondition": [],
  "Value": {},
  "NegateCondition": true,
  "FilterID": 321
}